php alert

56

alert in php -

// This is in the PHP file and sends a Javascript alert to the client
$message = "Something";
echo "<script type='text/javascript'>alert('$message');</script>";

allert in php -

// This is in the PHP file and sends a Javascript alert to the client
$message = "wrong answer";
echo "<script type='text/javascript'>alert('$message');</script>";

alert a php variable -

echo '<script type="text/javascript">alert("'.$error.'");</script>';

Comments

Submit
0 Comments